home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows (5th Edition) / Programming Windows, 5th ed. - Companion CD (097-0002183)(1999).iso / readme.txt
Text File  |  1998-10-09  |  5KB  |  139 lines

  1. __________________________________________________________________
  2.  
  3.                        Companion Disc Readme
  4.                                 for
  5.  
  6.                 Programming Windows, Fifth Edition
  7.  
  8.  
  9.                         by Charles Petzold
  10.  
  11.             Copyright (c) 1999 by Microsoft Corporation
  12.           Portions copyright (c) 1999 by Charles Petzold
  13.                         All Rights Reserved
  14. ___________________________________________________________________
  15.  
  16.  
  17. README CONTENTS
  18.  - WHAT'S ON THIS CD?
  19.  - HOW TO USE THE CD
  20.  - SUPPORT INFORMATION
  21.  
  22.  
  23. WHAT'S ON THIS CD?
  24. ==================
  25. This CD contains the following items:
  26.  
  27.  - Example programs
  28.  - Electronic version of the book
  29.  - Microsoft Internet Explorer 4
  30.  
  31.  
  32. HOW TO USE THE CD
  33. =================
  34.  
  35. Example programs
  36. ================
  37. This CD contains both the source code for every program discussed
  38. in the book as well as executable files. You can open the source
  39. files in the Microsoft Visual C++ environment or in your favorite
  40. editor.
  41.  
  42. For each sample program, there are two different executable files,
  43. one located in the RELEASE subdirectory and the other in the DEBUG
  44. subdirectory. The executable in the DEBUG directory is intended to
  45. be used for debugging. Generally, these executables have been
  46. created with the default settings in Microsoft Visual C++ 6 with
  47. one major exception: aside from other compiler and linker flags,
  48. the executable in the DEBUG directory has been compiled with the
  49. UNICODE identifier defined. In most cases, this means that the
  50. executable in the DEBUG directory will not run under Windows 95 or
  51. Windows 98; it will run under Windows NT only. The executable in
  52. the RELEASE directory will run under Windows 95, Windows 98, or
  53. Windows NT. The UNICODE identifier is discussed in Chapter 2 of the
  54. book.
  55.  
  56. Although the executables are located in the RELEASE and DEBUG
  57. subdirectories, some programs use data files that are located in
  58. the parent directory, which is the directory that has the same name
  59. as the program and which contains the program source code. Thus,
  60. this parent directory must be the default directory when the
  61. program is run or the program may not work correctly. If you always
  62. run the programs from the Visual C++ environment, you won't have
  63. any problems. You can also run the programs from the MS-DOS command
  64. line from the parent directory like so:
  65.  
  66.     DEBUG\progname
  67.  
  68. or:
  69.  
  70.     RELEASE\progname
  71.  
  72. However, if you run the programs from Windows Explorer, the
  73. programs won't be able to find their data files.
  74.  
  75. Some of the programs in Chapter 18 create files that are used by
  76. other programs in the chapter. Thus, these programs must be run in
  77. a specific order.
  78.  
  79. Some programs use features that are new with Windows 98 and Windows
  80. NT 5. At the time of the creation of this CD, the Windows header
  81. files included with Visual C++ 6 and distributed via MSDN and the
  82. Microsoft web site did not assume Windows 98 development as a
  83. default. Thus, to use Windows 98 features, a #define statement must
  84. appear before the #include statement for the Windows header files,
  85. like this:
  86.  
  87.     #define WINVER 0x0500
  88.     #include <windows.h>
  89.  
  90. This #define statement is included in the appropriate programs on
  91. the CD but is not shown in the program listings in the book.
  92.  
  93. Electronic version of book
  94. ==========================
  95. To install the electronic version of this book:
  96.  
  97. 1. Choose Run from the Start menu.
  98. 2. Type D:\EBook\Setup.exe (where D is your CD-ROM drive letter),
  99.    and press Enter.
  100. 3. Follow the prompts on your screen. The setup program will offer
  101.    to install Internet Explorer 4 for you if it is not found on
  102.    your system. Internet Explorer is required to view the contents
  103.    of the electronic book.
  104.  
  105. Microsoft Internet Explorer 4
  106. =============================
  107. To install Microsoft Internet Explorer 4 without installing the
  108. electronic version of this book:
  109.  
  110. 1. Choose Run from the Start menu.
  111. 2. Type D:\EBook\IE4Setup\ie4setup.exe (where D is your CD-ROM
  112.    drive letter), and press Enter.
  113. 3. Follow the prompts on your screen.
  114.  
  115.  
  116. SUPPORT INFORMATION
  117. ===================
  118. Every effort has been made to ensure the accuracy of the book
  119. and the contents of this companion disc. Microsoft Press
  120. provides corrections for books through the World Wide Web at
  121.  
  122.     http://mspress.microsoft.com/mspress/support/
  123.  
  124. If you have comments, questions, or ideas regarding the book or
  125. this companion disc, please send them to Microsoft Press via 
  126. e-mail to:
  127.  
  128.     mspinput@microsoft.com
  129.  
  130. or via postal mail to:
  131.  
  132.     Microsoft Press
  133.     Attn: Programming Windows 5th ed. Editor
  134.     One Microsoft Way
  135.     Redmond, WA  98052-6399
  136.  
  137. Please note that product support is not offered through the
  138. above addresses. 
  139.